home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 49
/
Amiga Format CD49 (2000-01-17)(Future Publishing)(GB)(Track 1 of 3)[!][issue 2000-02].iso
/
-in_the_mag-
/
program_perfection
/
gui
/
boopsi_misc.c
< prev
next >
Wrap
C/C++ Source or Header
|
1999-12-08
|
383b
|
26 lines
#include "defs.h"
#include <exec/types.h>
#include <intuition/intuition.h>
#include <proto/intuition.h>
ULONG
QuickGetAttr( APTR object, ULONG attrID )
{
ULONG storage;
GetAttr( attrID, object, &storage );
return storage;
}
VOID
NotifyAttrChanges( Object *o, struct GadgetInfo *gi, ULONG flags, Tag attr1, ...)
{
DoMethod(o, OM_NOTIFY, &attr1, gi, flags);
}